home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------------
- // ProgramWithIcon ⌐ 2001 by Charles Petzold
- //-------------------------------------------
- using System;
- using System.Drawing;
- using System.Windows.Forms;
-
- class ProgramWithIcon: Form
- {
- public static void Main()
- {
- Application.Run(new ProgramWithIcon());
- }
- public ProgramWithIcon()
- {
- Text = "Programa con icono";
-
- Icon = new Icon(typeof(ProgramWithIcon),
- "ProgramWithIcon.ProgramWithIcon.ico");
- }
- }